home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / PROG_TOO / C027B.ZIP / TOP / MAKEFILE < prev    next >
Text File  |  1990-03-30  |  246b  |  18 lines

  1. #
  2. # Makefile for the optimizer
  3. #
  4.  
  5. OBJ =    main.o io.o util.o sym.o func.o branch.o inst.o opcodes.o \
  6.     peep.o health.o data.o
  7.  
  8. CFLAGS = -O
  9.  
  10. xtop.ttp : $(OBJ)
  11.     cc $(OBJ) -o xtop.ttp
  12.  
  13. clean:
  14.     $(RM) *.o
  15.  
  16. clobber:
  17.     $(RM) *.o xtop.ttp
  18.